home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / MISCELLA / SPLINE10.ZIP / SPLINES.BAS < prev    next >
BASIC Source File  |  1993-12-27  |  772b  |  14 lines

  1. 'Copyright (C) Andrew S. Dean 1993
  2.  
  3. Type xyzTD
  4.    fX As Single
  5.    fY As Single
  6.    fZ As Single
  7. End Type
  8.  
  9.  
  10. Declare Function Bezier Lib "splines.dll" (ByVal lRes As Long, ByVal lNumControl As Long, Cont As xyzTD, Curve As xyzTD) As Long
  11. Declare Function Bspline Lib "splines.dll" (ByVal lRes As Long, ByVal gfTension As Single, ByVal lNumControl As Long, Cont As xyzTD, Curve As xyzTD) As Long
  12. Declare Function TauSpline Lib "splines.dll" (ByVal lRes As Long, ByVal gfTension As Single, ByVal gfBias As Single, ByVal lNumControl As Long, Cont As xyzTD, Curve As xyzTD) As Long
  13. Declare Function BetaSpline Lib "splines.dll" (ByVal lRes As Long, ByVal gfTension As Single, ByVal gfBias As Single, ByVal lNumControl As Long, Cont As xyzTD, Curve As xyzTD) As Long
  14.